@include focus-ring();
+ @if $contrast == 'high' {
+ &:selected {
+ box-shadow: inset 0 0 0 1px $borders_color;
+ }
+ }
+
+
&:drop(active) {
box-shadow: none;
}
outline-color: $alt_focus_border_color;
@extend %selected_items;
+
+ @if $contrast == 'high' {
+ box-shadow: inset 0 0 0 1px $borders_color;
+ }
+
}
box { //cells
outline: none;
transition: none;
- &:selected { background: image($menu_selected_color); }
+ &:selected {
+ background: image($menu_selected_color);
+
+ @if $contrast == 'high' {
+ box-shadow: inset 0 0 0 1px $borders_color;
+ }
+ }
}
}
background-color: $menu_selected_color;
color: inherit;
+ @if $contrast == 'high' {
+ box-shadow: inset 0 0 0 1px $borders_color;
+ }
+
+
&:hover {
background-color: darken($menu_selected_color,5%);
}
&:focus,
&:hover {
background: $selected_bg_color;
+
+ @if $contrast == 'high' {
+ box-shadow: inset 0 0 0 1px $borders_color;
+ }
}
}